Namespace - LJCNetCommon
Parameters
textState - The current text state values.
title - The page title.
author - The author.
description - The description.
Returns
The common HTML head elements.
Syntax
C# |
public String GetHTMLHead(TextState textState, String title = null, String author = null, String description = null)
|
Gets the common HTML Head elements.
Example
C# |
var textState = new TextState();
var hb = new HTMLBuilder(textState);
var title = "The Title";
var author = "Mr. Smith";
var description = "The Description";
var result = hb.GetHTMLHead(textState, title, author, description);
|
Copyright © Lester J. Clark and Contributors.
Licensed under the MIT License.